home *** CD-ROM | disk | FTP | other *** search
/ BBS Toolkit / BBS Toolkit.iso / remote / fd199c.zip / SAMPLES.ZIP / ROUTE.2 < prev   
Text File  |  1990-03-06  |  760b  |  36 lines

  1. ;
  2. ;  Sample route file
  3. ;
  4.  
  5. ;
  6. ;  Make sure we never route stuff for systems in my own net:
  7. ;
  8. no-route mynet/all
  9.  
  10. ;
  11. ;  Hold all zone 2 mail
  12. ;
  13. hold 2:all
  14.  
  15. ;
  16. ;  The 'noevent' event, active whenever no other mail events
  17. ;  are active. This example simply qualifies all systems for
  18. ;  sending. The above 'no-route' statement is global and 
  19. ;  applies for the 'noevent' below.
  20. ;
  21. ;  The 'unhold' statement below removes the hold restriction
  22. ;  on Zone 2 systems.
  23. ;
  24. schedule @ all
  25.   unhold 2:all
  26.  
  27. ;
  28. ;  Another mail event where we don't unhold Zone 2 systems.
  29. ;  Route all Zone 3 mail through 3:99/99 (only during the
  30. ;  below event) and hold the bundle for 3:99/99 to pickup.
  31. ;
  32. schedule j all
  33.   route-to 3:99/99 3:all
  34.   hold 3:99/99
  35.  
  36.